Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2025

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps github.com/quick/nimble from 13.7.1 to 14.0.0.

Release notes

Sourced from github.com/quick/nimble's releases.

v14.0.0

Highlights

Nimble 14 includes a reimplementation of polling expectations. Previously, polling expectations would run 2 tasks: The polling, and a timer. Once the timer ends, the polling task is stopped. This worked, but left open the possibility for increased flakiness in heavily loaded environments (as CI often is), and in parallel testing environments (i.e. using Nimble with Swift Testing). Nimble 14 changes how polling expectations are done to instead first calculate how much to poll (based on the duration & interval specified), and then poll based on that amount calculated (e.g. the default 1 second duration with 1 millisecond interval will result in 1000 polling attempts, waiting 1 millisecond between each attempt). This means that time spent running the polling is not accounted for, which does increase the wall-clock time that polling lasts for. Again, this implementation entirely eliminates one source of flakiness; reliability is worth a little extra runtime.

Deprecations

Nimble 14 deprecates synchronous polling expectations (using polling expectations without await) and the synchronous waitUntil when used from Swift. We will continue to allow polling expectations from Objective-C.

Additionally, Nimble 14 will emit test warnings (Requires Swift 6.3 and later, which is when this feature will be introduced) when using the asynchronous version of waitUntil in a Swift Testing environment. If I could make this a compile-time deprecation warning, I would.

In a future version of Nimble, these will be removed/will emit test failures when used.

Auto-Generated Changelog

What's Changed

Full Changelog: Quick/Nimble@v13.8.0...v14.0.0

v13.8.0

Highlights

  • requireFail now returns Never, indicating the status that it will always throw an error. (Thanks @​bnickel!)
  • toAlways and toNever will never fail on a main thread timeout. (Thanks @​bnickel!)

Auto-Generated Release Notes

What's Changed

New Contributors

Full Changelog: Quick/Nimble@v13.7.1...v13.8.0

Commits
  • 035b88a [v14.0.0] Update podspec
  • 96ac61f Fix waitUntil, which was broken in the new implementation of polling expectat...
  • 5a0cc37 Reimplement polling expectations to make them more reliable under heavy syste...
  • cc945f7 [v13.8.0] Update podspec
  • 1ee0178 Do not fail on timeout for toAlways and toNever (#1192)
  • 15106f1 Fix linux cfrunloop build (#1200)
  • ae0648d Remove duplicated runloop code (#1193)
  • 4cde9c5 Bump rexml from 3.3.9 to 3.4.2 (#1198)
  • 0d5588c Return Never from requireFail (#1194)
  • 28970fa Bump Cwl dependencies to fix Xcode 16 issues (#1190)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/quick/nimble](https://github.com/Quick/Nimble) from 13.7.1 to 14.0.0.
- [Release notes](https://github.com/Quick/Nimble/releases)
- [Commits](Quick/Nimble@v13.7.1...v14.0.0)

---
updated-dependencies:
- dependency-name: github.com/quick/nimble
  dependency-version: 14.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file swift_package_manager Pull requests that update Swift_package_manager code labels Dec 1, 2025
@younata younata closed this Dec 2, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 2, 2025

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot dependabot bot deleted the dependabot/swift/github.com/quick/nimble-14.0.0 branch December 2, 2025 17:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file swift_package_manager Pull requests that update Swift_package_manager code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants